+Sat Oct 20 18:16:04 2001 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtktreeview.c (gtk_treeview_get_property): PROP_MODEL and
+ PROP_EXPANDER_COLUMN can be NULL, so don't do a object case check
+ for those
+
Sat Oct 20 19:38:16 2001 Owen Taylor <otaylor@redhat.com>
* demos/*.c demos/gdk-pixbuf/*.c: Eliminate gtk_signal_*
+Sat Oct 20 18:16:04 2001 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtktreeview.c (gtk_treeview_get_property): PROP_MODEL and
+ PROP_EXPANDER_COLUMN can be NULL, so don't do a object case check
+ for those
+
Sat Oct 20 19:38:16 2001 Owen Taylor <otaylor@redhat.com>
* demos/*.c demos/gdk-pixbuf/*.c: Eliminate gtk_signal_*
+Sat Oct 20 18:16:04 2001 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtktreeview.c (gtk_treeview_get_property): PROP_MODEL and
+ PROP_EXPANDER_COLUMN can be NULL, so don't do a object case check
+ for those
+
Sat Oct 20 19:38:16 2001 Owen Taylor <otaylor@redhat.com>
* demos/*.c demos/gdk-pixbuf/*.c: Eliminate gtk_signal_*
+Sat Oct 20 18:16:04 2001 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtktreeview.c (gtk_treeview_get_property): PROP_MODEL and
+ PROP_EXPANDER_COLUMN can be NULL, so don't do a object case check
+ for those
+
Sat Oct 20 19:38:16 2001 Owen Taylor <otaylor@redhat.com>
* demos/*.c demos/gdk-pixbuf/*.c: Eliminate gtk_signal_*
+Sat Oct 20 18:16:04 2001 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtktreeview.c (gtk_treeview_get_property): PROP_MODEL and
+ PROP_EXPANDER_COLUMN can be NULL, so don't do a object case check
+ for those
+
Sat Oct 20 19:38:16 2001 Owen Taylor <otaylor@redhat.com>
* demos/*.c demos/gdk-pixbuf/*.c: Eliminate gtk_signal_*
+Sat Oct 20 18:16:04 2001 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtktreeview.c (gtk_treeview_get_property): PROP_MODEL and
+ PROP_EXPANDER_COLUMN can be NULL, so don't do a object case check
+ for those
+
Sat Oct 20 19:38:16 2001 Owen Taylor <otaylor@redhat.com>
* demos/*.c demos/gdk-pixbuf/*.c: Eliminate gtk_signal_*
+Sat Oct 20 18:16:04 2001 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtktreeview.c (gtk_treeview_get_property): PROP_MODEL and
+ PROP_EXPANDER_COLUMN can be NULL, so don't do a object case check
+ for those
+
Sat Oct 20 19:38:16 2001 Owen Taylor <otaylor@redhat.com>
* demos/*.c demos/gdk-pixbuf/*.c: Eliminate gtk_signal_*
/* gtktreeview.c
* Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford <jrb@redhat.com>
*
- This library is free software; you can redistribute it and/or
+ * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
switch (prop_id)
{
case PROP_MODEL:
- g_value_set_object (value, G_OBJECT (tree_view->priv->model));
+ g_value_set_object (value, tree_view->priv->model);
break;
case PROP_HADJUSTMENT:
g_value_set_object (value, G_OBJECT (tree_view->priv->hadjustment));
g_value_set_boolean (value, gtk_tree_view_get_headers_visible (tree_view));
break;
case PROP_EXPANDER_COLUMN:
- g_value_set_object (value, G_OBJECT (tree_view->priv->expander_column));
+ g_value_set_object (value, tree_view->priv->expander_column);
break;
case PROP_REORDERABLE:
g_value_set_boolean (value, tree_view->priv->reorderable);